Signature
string datetime.format(string format);
Returns a formatted date string according to the current datetime values.
Arguments
A datetime string that can use any of the C library’s strftime()
placeholders:
Value | Description | Example |
d | Given day | 1..31 |
M | Given month | 1..12 |
Y | Given year in YYYY format | 2015 |
Notes:
Examples:
io.println(datetime.now().format("d-M-Y"));
// 15-05-2015